body {
    margin: 0;
}

.maincontent {
    margin-left: 15%;
    margin-right: 15%;
}

.topmainservicedetailsbox {
    display: flex;
    margin-top: 5rem;
    height: 550px;
}

.topmainservicedetailsbox img{
    flex: 75%;
    width: 100%;
}

.Topbox1{
    margin-left: 2%;
    padding: 15px;
    flex: 25%;
    width: 100%;
    border: 1px solid rgb(212, 212, 212);
    transition: 0.5s;
}

.Topbox1:hover{
    background-color: rgb(247, 247, 247);
}

.Topbox1 div{
    display: flex;
}

.Topbox1 h2{
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px 0px 25px;
    font-size: 35px;
}

.Topbox1 h4{
    margin-top: 35px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.Topbox1 p{
    margin-top: -5px;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.Topbox1 span{
    color: rgb(243, 208, 11);
    font-size: 22px;
    margin-right: 10px;
}

.middlebox {
    margin-right: 28%;
}

.middlebox h1{
    font-size: 50px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.middlebox h2{
    margin-top: 45px;
    font-size: 25px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.middlebox h4{
    font-size: 20px;
    color: white;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.middlebox p{
    margin-bottom: 30px;
    font-size: 18px;
    color: rgb(92, 92, 92);
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.middleboxservicelist {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 10px;
}

.middleboxservicelist div{
    background-color: rgb(27, 27, 27);
    border: 3px solid rgb(27, 27, 27);
    display: flex;
    transition: 0.5s;
}

.middleboxservicelist div:hover{
    border: 3px solid rgb(243, 208, 11);
}

.middleboxservicelist span{
    color: rgb(243, 208, 11);
    font-size: 35px;
    margin : 24px 15px 0px 25px;
}


